PAGE 1

Row

Chart (1)

Chart (2)

Row

Chart (3)

Chart (4)

PAGE 2

Row

Chart (5)

Chart (6)

Row

Chart (7)

Chart (8)

---
title: "Your Department Name"
author: "Your Name"
output: 
  flexdashboard::flex_dashboard:
    orientation: rows
    social: menu
    source_code: embed
---

```{r setup, include=FALSE}
library(ggplot2)
library(plotly)
library(plyr)
library(flexdashboard)

# create some data
set.seed(955)
dat <- data.frame(cond = rep(c("A", "B"), each=10),
                  xvar = 1:20 + rnorm(20,sd=3),
                  yvar = 1:20 + rnorm(20,sd=3))
```

PAGE 1
=======================================================================

Row
-----------------------------------------------------------------------

### Chart (1)

```{r}

```


### Chart (2)

```{r}

```

Row
-----------------------------------------------------------------------

### Chart (3)

```{r}

```

### Chart (4)

```{r}
hist(dat$xvar)
```

PAGE 2
=======================================================================

Row
-----------------------------------------------------------------------

### Chart (5)

```{r}

```

### Chart (6)

```{r}

```

Row
-----------------------------------------------------------------------

### Chart (7)

```{r}

```

### Chart (8)

```{r}

```